home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ShareWare OnLine 2
/
ShareWare OnLine Volume 2 (CMS Software)(1993).iso
/
bbs_soft
/
mrun210.zip
/
TERMINAL.WAS
< prev
next >
Wrap
Text File
|
1993-04-28
|
582b
|
38 lines
;Terminal mode script for MailRun 2.1
integer UserHit
proc main
integer char
long l
dialogbox 284 232 76 25 14 "Terminal Mode"
pushbutton 20 5 34 13 "E&xit" cancel
enddialog
alarm 2
UserHit = 0
set aspect keys ON
when dialog call parse
l = $LTIME + 30
while (l - $LTIME) && !($KEYHIT)
endwhile
if $KEYHIT
keyget char
computc char
set aspect keys OFF
while 1
endwhile
else
set aspect keys OFF
exit
endif
endproc
proc parse
integer status
status = $DIALOG
if status == 1
set aspect keys OFF
exit
endif
endproc